home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / cadence.zip / VOL1NO4.ZIP / SETLAYER.LSP < prev    next >
Text File  |  1986-09-25  |  170b  |  11 lines

  1. (defun c:SETLAYER (/ LAYER)
  2. (setq LAYER
  3.     (cdr
  4.         (assoc 8
  5.             (entget
  6.                 (car
  7.                     (entsel "Pick item for new layer "
  8. ))))))
  9. (command "LAYER" "SET" layer "")
  10. )
  11.